From 7313ba262b762e91025d00b9b6e6391a2f909d02 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20H=C3=A4rdeman?= Date: Sun, 16 Nov 2025 21:10:40 +0100 Subject: [PATCH] odhcpd: update devel-build.sh MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Now that ubus can be disabled at runtime, we can default to building it in, making it easier to catch compile-time errors in ubus.c. Signed-off-by: David Härdeman Link: https://github.com/openwrt/odhcpd/pull/312 Signed-off-by: Álvaro Fernández Rojas --- scripts/devel-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/devel-build.sh b/scripts/devel-build.sh index ea1ee91..b13800a 100755 --- a/scripts/devel-build.sh +++ b/scripts/devel-build.sh @@ -11,7 +11,7 @@ if [ ! -e "CMakeLists.txt" ] || [ ! -e "src/odhcpd.c" ]; then fi if [ $# -eq 0 ]; then - BUILD_ARGS="-DDHCPV4_SUPPORT=ON" + BUILD_ARGS="-DDHCPV4_SUPPORT=ON -WITH_UBUS=ON" else BUILD_ARGS="$@" fi -- 2.30.2